home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Power Tools
/
Programmer Power Tools.iso
/
c
/
jazlib.arc
/
JZPUTKBD.DMO
< prev
next >
Wrap
Text File
|
1986-07-02
|
892b
|
25 lines
#define min(a,b) a < b ? a : b
#define RED 4
#include <jzputkbd.c>
main()
{
jzlogo();
cls(RED);
jzloccur(0,0);
printf("\nThis program will stuff some keys into the keyboard buffer.");
printf("\nMainly the F3 key (which dos will use to repeat the last command.)");
printf("\nThis will cause the program to run itself over and over until you");
printf("\nabort with a Control - C");
printf("\nThe source for the keyboard routine is included but if you wish");
printf("\nto get the source code to over 100 \"C\" routines,");
printf("\nSend $25.00 or contact me at:");
printf("\nJack A. Zucker c/o JazSoft Software");
printf("\n10318 Broom Lane");
printf("\nSeabrook, Md. 20706");
printf("\n301-794-5950 | 301-794-8763 | CIS:75766,1336\n");
printf("\nPress <Enter> to continue...");
do ; while (getch() != 13);
jzputkbd("\377\075\r");
}